Mega Code Archive

Categories
1) Android
2) ASP.Net
3) ASP.Net Tutorial
4) C
5) C Tutorial
6) C#
7) C# Book
8) C# by API
9) C# Tutorial
10) C++
11) C++ Tutorial
12) Delphi
13) Flash ActionScript
14) Flex
15) Java
16) Java Book
17) Java by API
18) Java Tutorial
19) JavaScript DHTML
20) JavaScript Reference
21) JavaScript Tutorial
22) MSOfficeExcel 2007 Tutorial
23) MSOfficePowerPoint 2007 Tutorial
24) MSOfficeWord 2007 Tutorial
25) MSSQL
26) MSSQL Tutorial
27) MySQL
28) MySQL Tutorial
29) Oracle PLSQL
30) Oracle PLSQL Tutorial
31) Perl
32) Php
33) PostgreSQL
34) Python
35) Python Tutorial
36) Ruby
37) Silverlight
38) VB.Net
39) VB.Net by API
40) VB.Net Tutorial
41) Visual C++ .NET
42) VisualBasic Script
43) XML
44) XML Tutorial
 
Oracle PLSQL Tutorial
1) Aggregate Functions
2) Analytical Functions
3) Character String Functions
4) Collections
5) Conversion Functions
6) Cursor
7) Date Timestamp Functions
8) Function Procedure Packages
9) Index
10) Insert Update Delete
11) Introduction
12) Large Objects
13) Linear Regression Functions
14) Miscellaneous Functions
15) Numerical Math Functions
16) Object Oriented
17) PL SQL Data Types
18) PL SQL Operators
19) PL SQL Programming
20) PL SQL Statements
21) Query Select
22) Regular Expressions Functions
23) Sequences
24) Set
25) SQL Data Types
26) SQL PLUS Session Environment
27) Statistical Functions
28) System Packages
29) System Tables Data Dictionary
30) Table
31) Table Joins
32) Transaction
33) Trigger
34) User Privilege
35) View
36) XML
Regular Expressions Functions
1) [
2) {m,n} where m,n specifies that the match should occur from m to n times
3) + matches one or more repetitions
4) A ^ followed by something else like an l (a lowercase L)
5) A match for any vowel followed by an r or p
6) A quantifier {m} matches exactly m repetitions
7) A series of bs immediately following the a
8) Asking for a match for a capital F followed by any character
9) Asking for the presence of a g or a p
10) Asking for the presence of a g or a p with REGEXP_LIKE
11) Asking to match an a and zero or more bs
12) At least m times with
13) Backreference
14) Bracketed Classes
15) Brackets
16) Convert a name in the form first middle last into the last, middle first format
17) Empty Strings and the Repetition Character
18) Find the s and ignore case
19) Grouping
20) Looking for two consecutive vowels
21) Match a string where i is followed by any one character and followed by another i
22) Matches exactly zero or one repetition
23) Matches zero or more repetitions
24) Matching at least one b
25) Matching for a non-digit
26) Meta characters
27) Negating Carets
28) Non-greedy
29) Parameters is a field that may be used to define how one wants the search to proceed
30) Ranges (Minus Signs)
31) Regexp_Instr
32) Regexp_Instr returns the location (beginning) of a pattern in a given string
33) REGEXP_INSTR(value,[[
34) Regexp_instr(comments, [^ ]+, 1, 9) 0
35) REGEXP_LIKE(value,[^0-9])
36) REGEXP_LIKE(x, pattern [, match_option]) searchs x for the regular expression pattern
37) Regexp_Like
38) Regexp_like(comments, ([^ ]+ ){8,})
39) Regexp_like(comments, f[a-z] ,i)
40) Regexp_Substr
41) Regexp_Substr returns a string of data type VARCHAR2 or CLOB
42) REGEXP_SUBSTR(value,e e)
43) Regext_Replace
44) Regular Expression Functions
45) Regular Expression Metacharacters
46) Repetition Operators
47) Retrieves employees whose first name starts with J or j
48) Return-option returns the position of the start or end of the matched string
49) Returns the position of the second occurrence that matches the regular expression s[[
50) Search for (
51) SELECT REGEXP_INSTR(Two is bigger than One,One) where_it_is
52) Specify any series of letters and find matches, just like INSTR
53) The Alternation Operator
54) The Backslash as an Escape Character
55) The bracketed expression [[
56) The period may be substituted for any letter and still maintain a match
57) The Return-option is set to 1 to indicate the end of the found pattern
58) The says to match zero or one time
59) The search string cannot be anchored at the beginning and then searched from some other position
60) The simplest regular expression matches letters, letter for letter
61) Three to five consecutive vowels
62) Use the caret-anchor to insist the matching start at the beginning of the string
63) Using regexp_like(comments, ([[
64) Want an e followed by any number of other characters and then another e
65) Writing of the RE with a repeat operator